home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000274_news@columbia.edu_Fri Nov 25 03:45:09 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16898
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 25 Nov 1994 12:13:33 -0500
  3. Received: by apakabar.cc.columbia.edu id AA04432
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 25 Nov 1994 12:13:32 -0500
  5. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: [?] MS-DOS Kermit 3.13 and PPP
  9. Message-Id: <1994Nov25.094509.33775@cc.usu.edu>
  10. Date: 25 Nov 94 09:45:09 MDT
  11. References: <Czsuwq.LL1@indirect.com>
  12. Organization: Utah State University
  13. Lines: 43
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <Czsuwq.LL1@indirect.com>, monty@indirect.com (Jim Monty) writes:
  17. > I've been told by my Internet service provider that, for my SLIP account,
  18. > I need to use "dynamic" IP addressing in lieu of "static" IP addressing.  
  19. > I've also been told that, if I switch from SLIP to PPP, I won't need to 
  20. > worry about dynamic versus static IP addressing because PPP does what I 
  21. > need it to do.  I'm confused.
  22. > I use MS-DOS Kermit 3.13 and its built-in TCP/IP support in tandem with
  23. > the SLIP8250 packet driver.  Sometimes I can initiate a TCP/IP connection 
  24. > to a remote host, sometimes I can't.  Apparently, the reason for this 
  25. > intermittent success is that my service provider uses different terminal 
  26. > servers, some of which only support dynamic IP addressing.
  27. > 1.  Does MS-DOS Kermit 3.13 support dynamic IP addressing?  If so, what 
  28. > _is_ "dynamic" IP addressing?  And how do I implement it?
  29.  
  30.     It is not a client option. It is how the other side may choose
  31. to hand out IP addresses to clients. SLIP has no provision to supply
  32. this via a protocol transfer so you may need to read it off the screen or
  33. similar. Dynamic in this case means drawn from a pool of IP addresses on
  34. some server machine.
  35.     Cicso terminal servers support bootp over SLIP and that will provide
  36. the information. I have no idea about other host connections.
  37.  
  38. > 2.  If MS-DOS Kermit 3.13 does not support dynamic IP addressing, then it 
  39. > seems I need to switch from SLIP to PPP.  Correct?  Is there a PPP driver 
  40. > for MS-DOS (and not Windows 3.1)?  If so, where can I find this driver?
  41.  
  42.     See above. PPP can do the same. However, there is no formal way
  43. of transferring that information to the overlying TCP/IP protocol stack.
  44. Each vendor has different methods (if any). MS-DOS Kermit can obtain that
  45. information from the DOS Environment and from Novell's NET.CFG file for
  46. the case of Telebit PPP drivers.
  47.     Bootp may or may not work in your environment.
  48.  
  49. > If none of this inquiry makes any sense, it's because I don't really 
  50. > understand what I'm asking.  I only understand that my service provider 
  51. > can't help me--they only know and support Winsock applications.  They 
  52. > only pretend to listen to me after I've uttered the word "Kermit".
  53.     Then you need a better service provider. Winsock means TCP/IP
  54. stack, Windows or not, and thus the problem is exactly the same for DOS
  55. and Windows.
  56.     Joe D.